home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / WIN95UNI.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-19  |  350 b   |  17 lines

  1. //==================================
  2. // WIN95UNI - Matt Pietrek 1995
  3. // FILE: WIN95UNI.C
  4. //==================================
  5.  
  6. #define UNICODE
  7. #include <windows.h>
  8.  
  9. int main()
  10. {
  11.     MessageBox( 0,
  12.                 TEXT("Yes! Really!"),
  13.                 TEXT("Unicode in Windows 95?"),
  14.                 MB_ICONQUESTION );
  15.     return 0;
  16. }
  17.